build: Use AM_TESTS_ENVIRONMENT rather than TESTS_ENVIRONMENT
authorPhilip Withnall <withnall@endlessm.com>
Tue, 23 May 2017 12:26:25 +0000 (13:26 +0100)
committerAtomic Bot <atomic-devel@projectatomic.io>
Tue, 23 May 2017 17:51:27 +0000 (17:51 +0000)
TESTS_ENVIRONMENT is reserved for the user to be able to set when
running the tests. AM_TESTS_ENVIRONMENT is for the tests’ Makefile to
set itself.

https://www.gnu.org/software/automake/manual/html_node/Scripts_002dbased-Testsuites.html

Signed-off-by: Philip Withnall <withnall@endlessm.com>
Closes: #880
Approved by: cgwalters

Makefile-tests.am
buildutil/glib-tap.mk

index 6aae5f054d7514ed4ab58c7f3798970ec41a47a6..4261fa7c702996185e6a70157b167e8a5329a736 100644 (file)
@@ -27,7 +27,7 @@ EXTRA_DIST += \
 # We should probably consider flipping the default for DEBUG.  Also,
 # include the builddir in $PATH so we find our just-built ostree
 # binary.
-TESTS_ENVIRONMENT += OT_TESTS_DEBUG=1 \
+AM_TESTS_ENVIRONMENT += OT_TESTS_DEBUG=1 \
   OSTREE_UNINSTALLED_SRCDIR=$(abs_top_srcdir) \
        OSTREE_UNINSTALLED=$(abs_top_builddir) \
        G_DEBUG=fatal-warnings \
@@ -37,7 +37,7 @@ TESTS_ENVIRONMENT += OT_TESTS_DEBUG=1 \
        OSTREE_FEATURES="$(OSTREE_FEATURES)" \
        $(NULL)
 if BUILDOPT_ASAN
-TESTS_ENVIRONMENT += OT_SKIP_READDIR_RAND=1 G_SLICE=always-malloc
+AM_TESTS_ENVIRONMENT += OT_SKIP_READDIR_RAND=1 G_SLICE=always-malloc
 endif
 
 uninstalled_test_data = tests/ostree-symlink-stamp tests/ostree-prepare-root-symlink-stamp \
index ac4329bfbca9ad996db34e1dce02bea4a2a9f2d8..34b8f21ea26a524e79f781b4f0f0d022a4c58cfe 100644 (file)
@@ -1,6 +1,6 @@
 # GLIB - Library of useful C routines
 
-TESTS_ENVIRONMENT= \
+AM_TESTS_ENVIRONMENT= \
        G_TEST_SRCDIR="$(abs_srcdir)"           \
        G_TEST_BUILDDIR="$(abs_builddir)"       \
        UNINSTALLEDTESTS=1                      \